home *** CD-ROM | disk | FTP | other *** search
/ Super Shareware Collection / Super Shareware Collection.iso / os_2 / clisp.zip / CFGAMIGA.LSP < prev    next >
Lisp/Scheme  |  1994-02-05  |  2KB  |  54 lines

  1. ;;; ENGLISH: Site specific definitions, to be modified on installation
  2. ;;; DEUTSCH: Funktionen, die beim Transportieren zu ändern sind
  3. ;;; FRANCAIS: Fonctions dépendantes de l'installation
  4.  
  5. (in-package "LISP")
  6. (mapcar #'fmakunbound '(machine-type machine-version machine-instance
  7.                         short-site-name long-site-name editor-tempfile))
  8.  
  9. (defun machine-type () "Amiga")
  10. (defun machine-version () "Amiga 2000, OS 1.3")
  11. (defun machine-instance () "Heinrich Mustermanns Amiga")
  12.                           ;"Smith's Amiga"
  13.                           ;"Amiga de M. Henri Dupondt"
  14.  
  15. (defun short-site-name () "Pfefferhofen")
  16.                          ;"Farawaycity"
  17.                          ;"Village-le-Petit"
  18. (defun long-site-name () "Haus Nr. 71, 34567 Pfefferhofen, Deutschland")
  19.                         ;"4 Down Street #382, Farawaycity, TX 86754, USA"
  20.                         ;"5, Grande Rue, 34567 Village-le-Petit, France"
  21.  
  22. ;; ENGLISH: The name of the editor:
  23. ;; DEUTSCH: Der Name des Editors:
  24. ;; FRANCAIS: Nom de l'éditeur :
  25. (defparameter *editor* "ed")
  26.  
  27. ;; ENGLISH: The temporary file LISP creates for editing:
  28. ;; DEUTSCH: Das temporäre File, das LISP beim Editieren anlegt:
  29. ;; FRANCAIS: Fichier temporaire créé par LISP pour l'édition :
  30. (defun editor-tempfile () "T:lisptemp.lsp")
  31.  
  32. ;; ENGLISH: The list of directories where programs are searched on LOAD etc.
  33. ;;          if device and directory are unspecified:
  34. ;; DEUTSCH: Die Liste von Directories, in denen Programme bei LOAD etc. gesucht
  35. ;;          werden, wenn dabei Laufwerk und Directory nicht angegeben ist:
  36. ;; FRANCAIS: Liste de répertoires où chercher un fichier lorsqu'un répertoire
  37. ;;           particulier n'est pas indiqué :
  38. (defparameter *load-paths*
  39.   '(#"**/"      ; erst in allen Directories unterhalb von hier
  40.     #"LISP:**/" ; dann in allen Directories unterhalb von LISP:
  41.    )
  42. )
  43.  
  44. ;; ENGLISH: Also set the variable *default-time-zone* in DEFS1.LSP according
  45. ;;          to your time zone.
  46. ;; DEUTSCH: Setzen Sie auch die Variable *default-time-zone* in DEFS1.LSP
  47. ;;          auf die bei Ihnen gültige Zeitzone.
  48. ;; FRANCAIS: Dans DEFS1.LSP, affectez à *default-time-zone* la valeur
  49. ;;           correspondante à votre fuseau horaire.
  50.  
  51. ;; This makes screen output both faster and prettier:
  52. (setq *print-pretty* t)
  53.  
  54.